home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1997 February / macformat-047.iso / Shareware Plus / Developers / CLImax 1.0 / AppleScript and CLImax / Advanced AppleScript / Handlers to try / geturl / geturl.rsrc / TEXT_256.txt < prev   
Encoding:
Text File  |  1996-04-11  |  289 b   |  13 lines

  1. on geturl(FTPURL)
  2.  tell application "Anarchie"
  3.   activate
  4.   set ftpResult to -23005
  5.   repeat until ftpResult = 0
  6.    with timeout of 60000 seconds
  7.     set ftpResult to geturl (FTPURL as string)
  8.     if ftpResult ‚↠0 then close front window
  9.    end timeout
  10.   end repeat
  11.  end tell
  12. end geturl
  13.